From: bors Date: Sat, 9 Sep 2017 08:13:32 +0000 (+0000) Subject: Auto merge of #4477 - alexcrichton:fix-out-of-bounds, r=matklad X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2~6^2~60 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=33250c48b4763b01478d780e76206484a1d5b207;p=cargo.git Auto merge of #4477 - alexcrichton:fix-out-of-bounds, r=matklad Use poll instead of select to handle large fds It may be the case that Cargo's running around with a lot of file descriptors, and in this case we wouldn't be able to call `select` due to the file descriptors being too large and not fitting in the bit array. This switches to what the standard library is currently doing, using `poll`, which doesn't have this limitations. --- 33250c48b4763b01478d780e76206484a1d5b207